跳到主要内容

UI声音

play_ui_sound

播放UI声音

  • 参数
    • sound_id (string) - SoundData.ini表中的声音名字,即写在中括号中的部分
    • volume (number) - (可选) 音量,默认为1
ui_sound.play_ui_sound('释放失败', 0.8)

play_ui_sound_ex

播放UI声音(高级版接口)

  • 参数
    • sound_path (string) - 声音的路径,从Res开始算
    • volume (number) - (可选) 音量,默认为1
    • sound_type (string) - (可选) 默认为Effect,另一个可能的值为BackgroundMusic。同类型的声音同一时间只能播一个,同类型声音里后者打断前者。
ui_sound.play_ui_sound_ex('sound\\trap\\错误.ogg', 0.8, 'Effect')

stop_all_sound

停止播放所有UI声音

ui_sound.stop_all_sound()